home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1996 November
/
Chip 11-96.iso
/
software
/
qpv
/
install.dat
/
DRVSRC
/
DRVSRC.ZIP
/
V7VRAM2.ASM
< prev
next >
Wrap
Assembly Source File
|
1995-03-31
|
695b
|
40 lines
;
; QPV/386 video driver
; for Video Seven VRam II Revision V
;
; Contributed by: Kosmas Einbrodt, Giessen, Germany
; Kosmas.Einbrodt@math.uni-giessen.de
;
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank: push ax
shl al,04h
mov ah,al
mov al,0e8h
mov dx,03c4h
out dx,ax
pop ax
retf
Init: mov dx,03c4h
mov al,06h
out dx,al
inc dx
mov al,0eah
out dx,al
retf
Exit: retf
Code Ends
End Procs
; End of source.